function loadImage(modelid) { var img = new Image(); img.onload = function() { document.getElementById(modelid).setAttribute("style", "width:" + this.width + "px;height:" + this.height + "px; position:relative; background:url(../" + modelid + ".png)"); } img.src = '../' + modelid + '.png'; }